home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / contrib / dvx / demos / xeyes / eyes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-15  |  1.2 KB  |  47 lines

  1. /*
  2. * $XConsortium: Eyes.h,v 1.6 89/07/21 13:48:59 jim Exp $
  3. */
  4.  
  5. #ifndef _XtEyes_h
  6. #define _XtEyes_h
  7.  
  8. /***********************************************************************
  9.  *
  10.  * Eyes Widget
  11.  *
  12.  ***********************************************************************/
  13.  
  14. /* Parameters:
  15.  
  16.  Name             Class        RepType        Default Value
  17.  ----             -----        -------        -------------
  18.  background         Background        pixel        White
  19.  border             BorderColor    pixel        Black
  20.  borderWidth         BorderWidth    int        1
  21.  foreground         Foreground        Pixel        Black
  22.  outline         Outline        Pixel        Black
  23.  height             Height        int        120
  24.  mappedWhenManaged   MappedWhenManaged    Boolean        True
  25.  reverseVideo         ReverseVideo    Boolean        False
  26.  width             Width        int        120
  27.  x             Position        int        0
  28.  y             Position        int        0
  29.  
  30. */
  31.  
  32. #define XtNoutline    "outline"
  33. #define XtNcenterColor    "center"
  34.  
  35. #ifdef SHAPE
  36. #define XtNshapeWindow    "shapeWindow"
  37. #define XtCShapeWindow    "ShapeWindow"
  38. #endif
  39.  
  40. typedef struct _EyesRec *EyesWidget;  /* completely defined in EyesPrivate.h */
  41. typedef struct _EyesClassRec *EyesWidgetClass;    /* completely defined in EyesPrivate.h */
  42.  
  43. extern WidgetClass eyesWidgetClass;
  44.  
  45. #endif /* _XtEyes_h */
  46. /* DON'T ADD STUFF AFTER THIS #endif */
  47.